home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -seriously_amiga- / shareware / programming / mui / mcc_monthnavigator / developer / rexx / include / monthnavigator_mcc.rexx
OS/2 REXX Batch file  |  1997-12-06  |  2KB  |  54 lines

  1. /*
  2. **
  3. ** Copyright © 1996 Kai Hofmann. All rights reserved.
  4. ** Registered MUI custom class!
  5. **
  6. ** $VER: MonthNavigator.rexx 16.5 (21.08.97)
  7. **
  8. ** Experimental version, please report bugs/improvements!
  9. */
  10.  
  11. MUIC_MonthNavigator = "MonthNavigator.mcc"
  12. /*#define MonthNavigatorObject    MUI_NewObject(MUIC_MonthNavigator*/
  13.  
  14. MUIA_MonthNavigator_ShowWeekdayNames    = 0x81ee0005
  15. MUIA_MonthNavigator_ShowWeekNumbers    = 0x81ee0006
  16. MUIA_MonthNavigator_InputMode        = 0x81ee0009
  17. MUIA_MonthNavigator_UseFrames        = 0x81ee000a
  18. MUIA_MonthNavigator_ShowInvisibles    = 0x81ee000b
  19. MUIA_MonthNavigator_WeekdayNamesSpacing    = 0x81ee000c
  20. MUIA_MonthNavigator_WeekNumbersSpacing    = 0x81ee000d
  21. MUIA_MonthNavigator_LineWeekdayNames    = 0x81ee000e
  22. MUIA_MonthNavigator_LineWeekNumbers    = 0x81ee000f
  23. MUIA_MonthNavigator_Draggable        = 0x81ee0012
  24. MUIA_MonthNavigator_MarkHook        = 0x81ee0013
  25. MUIA_MonthNavigator_Dropable        = 0x81ee0014
  26. /*MUIA_MonthNavigator_DragQueryHook    = 0x81ee0015*/
  27. /*MUIA_MonthNavigator_DragDropHook    = 0x81ee0016*/
  28. MUIA_MonthNavigator_ShowLastMonthDays    = 0x81ee0017
  29. MUIA_MonthNavigator_ShowNextMonthDays    = 0x81ee0018
  30.  
  31. MUIM_MonthNavigator_Update        = 0x81ee0010 /* struct MUIP_MonthNavigator_Update {ULONG MethodID;};
  32.  
  33. MUIV_MonthNavigator_InputMode_None        = 0
  34. MUIV_MonthNavigator_InputMode_RelVerify        = 1
  35. MUIV_MonthNavigator_InputMode_Immediate        = 2
  36.  
  37. MUIV_MonthNavigator_MarkHook_HiToday        = 1
  38.  
  39. /*MUIV_MonthNavigator_MarkDay_Version        = 1*/
  40. /*
  41. struct MUIS_MonthNavigator_MarkDay
  42.  {
  43.   ULONG  Version;
  44.   LONG   Year;
  45.   UWORD  Month;
  46.   UWORD  Day;
  47.  
  48.   STRPTR PreParse;
  49.   ULONG  Background;
  50.   STRPTR ShortHelp;
  51.   BOOL   Disabled;
  52.  };
  53. */
  54.